home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / langs / sozosun.zoo / src / top / top.diff < prev   
Encoding:
Text File  |  1991-02-09  |  751 b   |  47 lines

  1. Only in top: Makefile
  2. diff ../stsrc/top/main.c top/main.c
  3. 9a10,13
  4. >  *
  5. >  * MODIFIED:
  6. >  *    10/1990  K. Dalton   added ifdef  for BSD Unix
  7. >  * 
  8. 15c19
  9. < #ifndef    MINIX
  10. ---
  11. > #if    !MINIX && !BSD
  12. diff ../stsrc/top/opcodes.h top/opcodes.h
  13. 15d14
  14. 120a120
  15. diff ../stsrc/top/top.h top/top.h
  16. 20,21c20,21
  17. < #ifdef    DEBUG
  18. < #define    DBG(x)        if (debug) { x; }
  19. ---
  20. > #ifdef  DEBUG
  21. > #define DBG(x)          if (debug) { x; }
  22. 23c23
  23. < #define    DBG(x)
  24. ---
  25. > #define DBG(x)
  26. 26,27c26,27
  27. < #ifndef    void
  28. < #define    void    int
  29. ---
  30. > #ifndef void
  31. > #define void    int
  32. 36,38c36,38
  33. < #ifndef    FALSE
  34. < #define    FALSE    0
  35. < #define    TRUE    1
  36. ---
  37. > #ifndef FALSE
  38. > #define FALSE   0
  39. > #define TRUE    1
  40. diff ../stsrc/top/util.c top/util.c
  41. 43c43
  42. < #ifdef    MINIX
  43. ---
  44. > #if    MINIX || BSD
  45.